Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump react-docgen to ^6.0.4 - autoclosed #37887

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 9, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
react-docgen ^5.4.3 -> ^6.0.4 age adoption passing confidence

Release Notes

reactjs/react-docgen (react-docgen)

v6.0.4

Compare Source

Patch Changes

v6.0.3

Compare Source

Patch Changes

v6.0.2

Compare Source

Patch Changes

v6.0.1

Compare Source

Patch Changes

v6.0.0

Compare Source

Major Changes
  • 96d6e9e
    Thanks @​danez! - Rename flowTypeHandler to
    codeTypeHandler because it handles Flow and TypeScript

  • #​719
    d7a39af
    Thanks @​danez! - Refactored
    resolveComponentDefinition utility.

    • Renamed to findComponentDefinition
    • Removed named export isComponentDefinition
    • The utility now does a lot more than previously, check out the commit to see
      the changes in detail.
  • #​761
    dfc2f85
    Thanks @​danez! - Renamed propDocBlockHandler to
    propDocblockHandler for consistency

  • 96d6e9e
    Thanks @​danez! - Simplify
    resolveObjectValuesToArray and remove type handling. None of the code that
    was handling types was used.

  • caae6bf
    Thanks @​danez! - The return values of
    resolveObjectValuesToArray are now in the order they are defined in the
    source code.

  • #​744
    e956802
    Thanks @​danez! - Removed match utility.

    The utility can be replaced by babel helpers and is not needed anymore. Also
    using explicit checks like path.isMemberExpression() is better for type
    safety and catching potential bugs.

  • 96d6e9e
    Thanks @​danez! - Migrate react-docgen to ES
    modules. Please read
    this

  • #​693
    3b28f6e
    Thanks @​danez! - The CLI was removed from
    react-docgen into its own package @react-docgen/cli.

    Check out https://react-docgen.dev/docs/getting-started/cli for the
    documentation.

  • 96d6e9e
    Thanks @​danez! - The main parse API had some
    breaking changes.

    • The arguments were changed from previously 5 to just 2. The following diff
      illustrates how to migrate:

      -parse(src, resolver, handlers, importer, options: { filename, ...babelOptions})
      +parse(src, { resolver, handlers, importer, filename, babelOptions: {} })
    • The return type is now always an array, independent of the resolver, even if
      only one component was found in the file.

  • #​786
    0a2481d
    Thanks @​danez! - Renamed the method toObject to
    build in the DocumentationBuilder.

    This method might be used by integrations.

  • 96d6e9e
    Thanks @​danez! - Renamed some of the main exports
    for clarity.

    Renamed handlers to builtinHandlers Renamed resolver to
    builtinResolvers Renamed importers to builtinImporters

  • #​743
    5215bab
    Thanks @​danez! - Removed support for the
    @extends React.Component annotation on react class components.

    Instead, you can use the new @component annotation or define your own
    annotation by creating a custom FindAnnotatedDefinitionsResolver instance

  • #​714
    80e4c74
    Thanks @​danez! - Renamed and migrated built-in
    resolvers to classes.

    • findAllComponentDefinitions was renamed to FindAllDefinitionsResolver
      and is now a class.

      -const resolver = builtinResolvers.findAllComponentDefinitions
      +const resolver = new builtinResolvers.FindAllDefinitionsResolver()
    • findAllExportedComponentDefinitions was renamed to
      FindExportedDefinitionsResolver and is now a class.

      -const resolver = builtinResolvers.findAllExportedComponentDefinitions
      +const resolver = new builtinResolvers.FindExportedDefinitionsResolver()
    • findExportedComponentDefinition was removed. Use
      FindExportedDefinitionsResolver with the limit option instead.

      This is still the default resolver.

      -const resolver = builtinResolvers.findExportedComponentDefinition
      +const resolver = new builtinResolvers.FindExportedDefinitionsResolver({ limit: 1 })
  • 96d6e9e
    Thanks @​danez! - Migrated to babel toolchain

    This is one of the big changes in this new version of react-docgen. It made
    the code a lot more robust because there are now finally working TypeScript
    types for the ASTs.

    Another benefit from this change is that react-docgen is now a lot faster. 🚀
    In some tests an improvement of nearly 50% was seen in comparison to
    version 5.

  • #​707
    d4c27d4
    Thanks @​danez! - Improve performance of file
    system importer.

    The file system importer now also caches the resolving of files in addition to
    parsing files. If the importer is used in an environment where files do change
    at runtime (like a watch command) then the caches will need to be cleared on
    every file change.

  • 96d6e9e
    Thanks @​danez! - Changed the minimum Node.js
    version to 14.18.0

Minor Changes
  • 96d6e9e
    Thanks @​danez! - Add support for .cts and .mts
    extension when using typescript

  • 96d6e9e
    Thanks @​danez! - Treat functions returning
    React.Children.map as components

  • 96d6e9e
    Thanks @​danez! - Improve performance by creating
    all visitors only once

  • 96d6e9e
    Thanks @​danez! - Support all possible kinds of
    functions in the displayNameHandler

  • #​786
    0a2481d
    Thanks @​danez! - Export the type for the
    DocumentationBuilder.

  • #​786
    0a2481d
    Thanks @​danez! - The types NodePath and
    babelTypes are now exported.

    These types are useful when building integrations in TypeScript.

    babelTypes includes all types from @babel/types.

  • #​714
    80e4c74
    Thanks @​danez! - Add the new ChainResolver which
    allows multiple resolvers to be chained.

    import { builtinResolvers } from 'react-docgen';
    
    const { ChainResolver } = builtinResolvers;
    const resolver = new ChainResolver([resolver1, resolver2], {
      chainingLogic: ChainResolver.Logic.ALL, // or ChainResolver.Logic.FIRST_FOUND,
    });
  • 96d6e9e
    Thanks @​danez! - Support all literal types in
    typescript

  • 96d6e9e
    Thanks @​danez! - Support flow qualified type names

  • 96d6e9e
    Thanks @​danez! - Support class and function
    declarations without identifier

  • 96d6e9e
    Thanks @​danez! - Support resolving of
    destructuring in resolveToValue

  • #​714
    80e4c74
    Thanks @​danez! - Allow resolvers to be classes in
    addition to functions.

    import type { ResolverClass, ResolverFunction } from 'react-docgen';
    
    // This was the only option until now
    const functionResolver: ResolverFunction = (file: FileState) => {
      //needs to return array of found components
    };
    
    // This is the new class resolver
    class MyResolver implements ResolverClass {
      resolve(file: FileState) {
        //needs to return array of found components
      }
    }
    
    const classResolver = new MyResolver();
  • 96d6e9e
    Thanks @​danez! - Improve performance drastically
    by making changes to AST traversal

    Visitors are now pre-exploded and are cached in the module scope instead of
    creating them on every call. This change brought the benchmark from 170ops/s
    to 225ops/sec

  • 96d6e9e
    Thanks @​danez! - Add codes to errors to be able to
    easily detect them

    There is a new export ERROR_CODES that contains all possible error codes.
    The two errors that have codes right now are:

    • MISSING_DEFINITION: No component found in a file
    • MULTIPLE_DEFINITIONS: Multiple components found in one file
  • 96d6e9e
    Thanks @​danez! - Support handling
    useImperativeHandle correctly

  • #​743
    5215bab
    Thanks @​danez! - Added a new resolver that finds
    annotated components. This resolver is also enabled by default.

    To use this feature simply annotated a component with @component.

    // @​component
    class MyComponent {}
Patch Changes

Configuration

📅 Schedule: Branch creation - "on sunday before 6:00am" in timezone UTC, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Update of dependencies label Jul 9, 2023
@mui-bot
Copy link

mui-bot commented Jul 9, 2023

Netlify deploy preview

https://deploy-preview-37887--material-ui.netlify.app/

Bundle size report

No bundle size changes (Toolpad)
No bundle size changes

Generated by 🚫 dangerJS against 2ec6334

@renovate renovate bot force-pushed the renovate/react-docgen-6.x branch from d37a491 to b2a76f5 Compare July 12, 2023 17:04
@ZeeshanTamboli
Copy link
Member

This package now requires ESM.

@ZeeshanTamboli ZeeshanTamboli added the on hold There is a blocker, we need to wait label Jul 13, 2023
@renovate renovate bot changed the title Bump react-docgen to ^6.0.1 Bump react-docgen to ^6.0.2 Jul 15, 2023
@renovate renovate bot force-pushed the renovate/react-docgen-6.x branch 3 times, most recently from 3704dc9 to fddec15 Compare July 17, 2023 09:25
@renovate renovate bot force-pushed the renovate/react-docgen-6.x branch 2 times, most recently from 81fef46 to 3924f72 Compare July 30, 2023 06:24
@renovate renovate bot changed the title Bump react-docgen to ^6.0.2 Bump react-docgen to ^6.0.3 Aug 14, 2023
@renovate renovate bot force-pushed the renovate/react-docgen-6.x branch from 3924f72 to 4e5d50a Compare August 14, 2023 14:29
@github-actions github-actions bot added the PR: out-of-date The pull request has merge conflicts and can't be merged label Aug 15, 2023
@renovate renovate bot force-pushed the renovate/react-docgen-6.x branch from 4e5d50a to 7601b9e Compare August 15, 2023 08:06
@github-actions github-actions bot removed the PR: out-of-date The pull request has merge conflicts and can't be merged label Aug 15, 2023
@renovate renovate bot force-pushed the renovate/react-docgen-6.x branch 2 times, most recently from 7285aab to 737c3f4 Compare August 17, 2023 13:33
@renovate renovate bot force-pushed the renovate/react-docgen-6.x branch from 737c3f4 to 6f959b7 Compare August 26, 2023 07:04
@github-actions github-actions bot added the PR: out-of-date The pull request has merge conflicts and can't be merged label Aug 28, 2023
@renovate renovate bot force-pushed the renovate/react-docgen-6.x branch from 6f959b7 to af80c69 Compare August 28, 2023 12:34
@github-actions github-actions bot removed the PR: out-of-date The pull request has merge conflicts and can't be merged label Aug 28, 2023
@renovate renovate bot changed the title Bump react-docgen to ^6.0.3 Bump react-docgen to ^6.0.4 Aug 30, 2023
@renovate renovate bot force-pushed the renovate/react-docgen-6.x branch from af80c69 to 1d5fc95 Compare August 30, 2023 17:08
@github-actions github-actions bot added the PR: out-of-date The pull request has merge conflicts and can't be merged label Sep 7, 2023
@renovate renovate bot force-pushed the renovate/react-docgen-6.x branch from 1d5fc95 to f1b0464 Compare September 7, 2023 14:13
@github-actions github-actions bot removed the PR: out-of-date The pull request has merge conflicts and can't be merged label Sep 7, 2023
@renovate renovate bot force-pushed the renovate/react-docgen-6.x branch from f1b0464 to 9adac43 Compare September 8, 2023 12:32
@github-actions github-actions bot added the PR: out-of-date The pull request has merge conflicts and can't be merged label Sep 11, 2023
@renovate renovate bot force-pushed the renovate/react-docgen-6.x branch from 9adac43 to a1a237b Compare September 11, 2023 09:15
@github-actions github-actions bot added PR: out-of-date The pull request has merge conflicts and can't be merged and removed PR: out-of-date The pull request has merge conflicts and can't be merged labels Sep 11, 2023
@renovate renovate bot force-pushed the renovate/react-docgen-6.x branch from a1a237b to 856c117 Compare September 11, 2023 09:55
@github-actions github-actions bot removed the PR: out-of-date The pull request has merge conflicts and can't be merged label Sep 11, 2023
@renovate renovate bot force-pushed the renovate/react-docgen-6.x branch 2 times, most recently from 54e00b1 to db9d544 Compare September 20, 2023 09:26
@github-actions github-actions bot added the PR: out-of-date The pull request has merge conflicts and can't be merged label Sep 20, 2023
@renovate renovate bot force-pushed the renovate/react-docgen-6.x branch from db9d544 to 1818d9c Compare September 20, 2023 10:46
@github-actions github-actions bot added PR: out-of-date The pull request has merge conflicts and can't be merged and removed PR: out-of-date The pull request has merge conflicts and can't be merged labels Sep 20, 2023
@renovate renovate bot force-pushed the renovate/react-docgen-6.x branch from 1818d9c to 238d18f Compare September 20, 2023 11:16
@github-actions github-actions bot removed the PR: out-of-date The pull request has merge conflicts and can't be merged label Sep 20, 2023
@renovate renovate bot force-pushed the renovate/react-docgen-6.x branch 2 times, most recently from f900a7e to 4615908 Compare September 26, 2023 16:21
@github-actions github-actions bot added PR: out-of-date The pull request has merge conflicts and can't be merged labels Sep 27, 2023
@renovate renovate bot force-pushed the renovate/react-docgen-6.x branch from 4615908 to 6c31a1c Compare September 27, 2023 07:21
@github-actions github-actions bot removed the PR: out-of-date The pull request has merge conflicts and can't be merged label Sep 27, 2023
@renovate renovate bot force-pushed the renovate/react-docgen-6.x branch from 6c31a1c to 2ec6334 Compare October 17, 2023 08:14
@renovate renovate bot changed the title Bump react-docgen to ^6.0.4 Bump react-docgen to ^6.0.4 - autoclosed Oct 19, 2023
@renovate renovate bot closed this Oct 19, 2023
@renovate renovate bot deleted the renovate/react-docgen-6.x branch October 19, 2023 15:11
@DiegoAndai DiegoAndai mentioned this pull request Oct 10, 2024
1 task
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Update of dependencies on hold There is a blocker, we need to wait
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants